crypto/tls.clientHandshakeState.serverHello (field)
22 uses
crypto/tls (current package)
handshake_client.go#L35: serverHello *serverHelloMsg
handshake_client.go#L373: serverHello: serverHello,
handshake_client.go#L556: if hs.session == nil && hs.hello.sessionId != nil && bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
handshake_client.go#L579: if err := transcriptMsg(hs.serverHello, &hs.finishedHash); err != nil {
handshake_client.go#L636: c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random)
handshake_client.go#L643: if hs.suite = mutualCipherSuite(hs.hello.cipherSuites, hs.serverHello.cipherSuite); hs.suite == nil {
handshake_client.go#L684: if !hs.serverHello.ocspStapling {
handshake_client.go#L724: err = keyAgreement.processServerKeyExchange(c.config, hs.hello, hs.serverHello, c.peerCertificates[0], skx)
handshake_client.go#L786: if hs.serverHello.extendedMasterSecret {
handshake_client.go#L796: hs.hello.random, hs.serverHello.random)
handshake_client.go#L863: keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
handshake_client.go#L885: bytes.Equal(hs.serverHello.sessionId, hs.hello.sessionId)
handshake_client.go#L895: if hs.serverHello.compressionMethod != compressionNone {
handshake_client.go#L902: for _, format := range hs.serverHello.supportedPoints {
handshake_client.go#L913: if c.handshakes == 0 && hs.serverHello.secureRenegotiationSupported {
handshake_client.go#L915: if len(hs.serverHello.secureRenegotiation) != 0 {
handshake_client.go#L925: if !bytes.Equal(hs.serverHello.secureRenegotiation, expectedSecureRenegotiation[:]) {
handshake_client.go#L931: if err := checkALPN(hs.hello.alpnProtocols, hs.serverHello.alpnProtocol, false); err != nil {
handshake_client.go#L935: c.clientProtocol = hs.serverHello.alpnProtocol
handshake_client.go#L937: c.scts = hs.serverHello.scts
handshake_client.go#L954: if hs.session.extMasterSecret != hs.serverHello.extendedMasterSecret {
handshake_client.go#L1032: if !hs.serverHello.ticketSupported {